home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / MacPerl / MPHelp.h < prev    next >
Text File  |  1993-09-16  |  619b  |  25 lines

  1. /*********************************************************************
  2. Project    :    MacPerl            -    Real Perl Application
  3. File        :    MPHelp.h            -    Various helpful functions
  4. Author    :    Matthias Neeracher
  5. Started    :    09Aug93                                Language    :    MPW C
  6. Modified    :    16Sep93    MN    Runtime doesn't support Ballons
  7. Last        :    16Sep93
  8. *********************************************************************/
  9.  
  10. #ifndef __MPHELP__
  11. #define __MPHELP__
  12.  
  13. #include <Memory.h>
  14. #include <QuickDraw.h>
  15. #include <Types.h>
  16.  
  17. #include "MPGlobals.h"
  18.  
  19. #ifndef RUNTIME
  20. void DoHelp(WindowPtr win, DPtr doc, Point pt, Boolean inText);
  21. #endif
  22.  
  23. void Explain(DPtr doc);
  24.  
  25. #endif